home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #16 / 2001 CD 16 (Black).iso / K-CS.DCR / 00269.ls < prev    next >
Encoding:
Text File  |  2001-10-25  |  277 b   |  21 lines

  1. global BlinkObjekt, Beskriv
  2.  
  3. on new me
  4.   set BlinkObjekt to new(script "Blink")
  5. end
  6.  
  7. on enterFrame
  8.   checkBlink(BlinkObjekt)
  9. end
  10.  
  11. on exitFrame
  12.   go(#loop)
  13. end
  14.  
  15. on keyDown
  16.   if the key = RETURN then
  17.     set Beskriv to the text of member "Beskrivelse"
  18.     go(#next)
  19.   end if
  20. end
  21.